home *** CD-ROM | disk | FTP | other *** search
- =============================================================================
- = A simple little program to show you everything there is to know about any =
- = user you specify. Illustrates the use of every variable available. =
- =============================================================================
-
- ifeq @arg1 "" Display format message if no name given
- print "Proper format is: UPL @arg0 username"
- print " or: UPL @arg0 'user name'"
- abort
- endif
- end Since @ARG1 is a constant, we can save a bit of seek time by
- run only doing this test once.
-
- ifeq @name @arg1
- print 'User #@usernum: @name'
- print 'City=@city; Password=@password'
- print 'Last called on @lastcall (@daysago days ago)'
- print '# Calls=@calls, Last msg area=@msgarea, Last file area=@filearea'
- print 'Priv=@priv, Time on today=@oltoday, Net downloads=@dltoday'
- print 'Total uploads=@uploadsKB, Total downloads=@downloadsKB, Ratio=@ulratio%'
- print 'Help=@help, Tabs=@tabs, Nulls=@nulls, Screen width=@width, Screen length=@length'
- print 'More=@more, Ansi=@ansi, OnOpus=@kludge, Screen clear=@formfeed'
- print 'Mail credit=@credit cent(s), Mail debt=@debit cent(s)'
- print 'Sysop207 delete flag=@delflg1; RemSysop delete flag=@delflg2'
- print
- print 'Area Last Area Last'
- print '---- ---- ---- ----'
- print ' @mra0$09@mrc0$09$09 @mra5$09@mrc5'
- print ' @mra1$09@mrc1$09$09 @mra6$09@mrc6'
- print ' @mra2$09@mrc2$09$09 @mra7$09@mrc7'
- print ' @mra3$09@mrc3$09$09 @mra8$09@mrc8'
- print ' @mra4$09@mrc4$09$09 @mra9$09@mrc9'
- end
- endif
-